home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2002 July
/
07_02.iso
/
software
/
xq-xsetup
/
files
/
setup.exe
/
{app}
/
plugins
/
XQ Remote Font Boot Cache.xpl
< prev
next >
Wrap
Text File
|
2001-04-26
|
1KB
|
45 lines
"FILE"="Xteq Systems X-Setup Plugin 5.0"
"TYPE"="6"
"COUNT"="1"
"UIPATH"="Appearance\Interface\TrueType Fonts"
"NAME"="Remote Font Boot Cache"
"VERSION"="1.02"
"OSVERSION"=000101"
"LANGUAGE"="VBScript"
"TEXT 1"="Enable Remote Font Boot Cache"
"DESCRIPTION 1"="This option determines if Remote Font Boot Cache is enabled or not."
"DESCRIPTION 2"="Disabling this option (unchecking it) may increase system performance slightly."
"AUTHOR"="Xteq Systems (CptSiskoX)"
"CONTACTURL"="http://www.xteq.com"
"COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
"COMMENT 1"="Found during registry exploration of Windows XP and Windows 2000."
sV1="HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\GRE_Initialize\DisableRemoteFontBootCache" 'DW
Sub Plugin_Initialize
i=RegReadValue(sV1)
if i=0 or IsEmpty(i) then
setuielement 1,true
end if
End Sub
Sub Plugin_CheckData(ElementIndex)
End Sub
Sub Plugin_Apply(ElementIndex,ElementSubIndex)
if GetUIElement(1)=true then
v=0
else
v=1
end if
Call RegWriteValue(sV1,v,2)
End Sub
Sub Plugin_Terminate
End Sub